home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / jaz_clib.arc / JZPAD.C < prev    next >
Text File  |  1989-04-09  |  175b  |  12 lines

  1. char *jzpad(flen,fchar)
  2. int flen,fchar;
  3. {
  4.   static char wbuf[256];
  5.  
  6.   memset(wbuf,fchar,flen);
  7.  
  8.   wbuf[flen] = 0;        /* flag the end of string */
  9.  
  10.   return(wbuf);
  11. }
  12.